home *** CD-ROM | disk | FTP | other *** search
- package DynaButtonsComp;
-
- import java.io.Serializable;
-
- public class ButtonObject implements Serializable {
- private ButtonObject next = null;
- private ButtonObject subButton;
- private String text;
- // $FF: renamed from: ID java.lang.String
- private String field_0;
- private String url;
- private String target;
- private boolean subButtonsExist;
-
- public ButtonObject() {
- this.subButton = new ButtonObject(true);
- this.subButton.setNext(new ButtonObject(true));
- this.text = "";
- this.url = "";
- this.field_0 = "0";
- this.subButtonsExist = false;
- this.target = "";
- }
-
- public ButtonObject(boolean foo) {
- this.subButton = null;
- this.text = "";
- this.url = "";
- this.field_0 = "0";
- }
-
- public final String getID() {
- return this.field_0;
- }
-
- public final ButtonObject getNext() {
- return this.next;
- }
-
- public final ButtonObject getSubButtons() {
- return this.subButton;
- }
-
- public final boolean getSubButtonsExist() {
- return this.subButtonsExist;
- }
-
- public String getTarget() {
- return this.target;
- }
-
- public final String getText() {
- return this.text;
- }
-
- public final String getURL() {
- return this.url;
- }
-
- public final void setID(String ID) {
- this.field_0 = ID;
- }
-
- public final void setNext(ButtonObject next) {
- this.next = next;
- }
-
- public final void setSubButtons(ButtonObject subButton) {
- this.subButton = subButton;
- }
-
- public final void setSubButtonsExist(boolean subButtonsExist) {
- this.subButtonsExist = subButtonsExist;
- }
-
- public void setTarget(String theTarget) {
- this.target = theTarget;
- }
-
- public final void setText(String text) {
- this.text = text;
- }
-
- public final void setURL(String url) {
- this.url = url;
- }
- }
-